18 JS之global对象的编码和解码方法

482次阅读
没有评论

共计 306 个字符,预计需要花费 1 分钟才能阅读完成。

URL

var url = 'https://www.luffycity.com/study/chapter/39863/2'

编码

encodeURIComponent() 编码 ( 使用最多的方法)

encodeURI(url) (只能编码空格)

console.log(encodeURI(url));  // 只能编码空格
console.log(encodeURIComponent(url));

解码

decondeURIComponent()

console.log(decodeURI(encodeURI(url)));
console.log(decodeURIComponent(encodeURIComponent(url)));
正文完
 
shawn
版权声明:本站原创文章,由 shawn 2023-06-16发表,共计306字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)